@charset "utf-8";

.resource-main {
  padding: 60px 0 60px;
}
.resource-main h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  font-family: auto;
}
.resource-list {
  padding: 5px 0;
  position: relative;
}
.resource-list::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 10px;
  z-index: -1;
  width: 2px;
  height: 100%;
  background-color: #ffb822;
}
.resource-list li+li {
  margin-top: 30px;
}
.resource-list .resource-icon {
  width: 27px;
  height: 22px;
  background-image: url(../images/resource_icon_1.png);
  background-repeat: no-repeat;
  background-position: 0 -22px;
  margin-right: 20px;
}
.resource-list li:hover .resource-icon {
  background-position: 0 0;
}

.resource-list .resource-con {
  border: 1px solid #ffeabc;
  padding: 16px 48px;
  border-radius: 55px;
  flex: 1;
  transition: all 0.3s;
}
.resource-list li:hover .resource-con {
  border-color: #ffb822;
}
.resource-list .resource-con .item-icon {
  width: 66px;
  height: 66px;
  margin-right: 30px;
}
.resource-list .resource-con .item-text .title {
  font-size: 25px;
  margin-bottom: 10px;
}
.resource-list .resource-con .item-text .desc {
  font-size: 16px;
  color: #989898;
  line-height: 1.8;
}